Instructions
How to use this document
Be aware that the CSS for these layouts is heavily commented. If you do most of your work in Design view, have a peek at the code to get tips on working with the CSS for the fixed layouts. You can remove these comments before you launch your site. To learn more about the techniques used in these CSS Layouts, read this article at Adobe's Developer Center - http://www.adobe.com/go/adc_css_layouts.
Clearing Method
Because all the columns are floated, this layout uses a clear:both declaration in the footer rule. This clearing technique forces the .container to understand where the columns end in order to show any borders or background colors you place on the .container. If your design requires you to remove the footer from the .container, you'll need to use a different clearing method. The most reliable will be to add a <br class="clearfloat" /> or <div class="clearfloat"></div> after your final floated column (but before the .container closes). This will have the same clearing effect.
Logo Replacement
An image placeholder was used in this layout in the header where you'll likely want to place a logo. It is recommended that you remove the placeholder and replace it with your own linked logo
Be aware that if you use the Property inspector to navigate to your logo image using the SRC field (instead of removing and replacing the placeholder), you should remove the inline background and display properties. These inline styles are only used to make the logo placeholder show up in browsers for demonstration purposes.
To remove the inline styles, make sure your CSS Styles panel is set to Current. Select the image, and in the Properties pane of the CSS Styles panel, right click and delete the display and background properties. (Of course, you can always go directly into the code and delete the inline styles from the image or placeholder there.)
Select the image, and in the Properties pane of the CSS Styles panel, right click and delete the display and background properties
This is a single line tag
This is another single line tag
Select the image, and in the Properties pane of the CSS Styles panel, right click and delete the display and background properties.
Image within text
This paragraph contains an image
which measures 200x200 in dimensions. This image has been place within the text specifically to test the behavior of the IP upon triggering events from the keyboard
using arrow key as well as modifiers. A little extra and unneccessary amount of text has been added just to serve the purpose of making this paragraph longer so as to facilitate testing the feature.
Usage of PRE tag
Below is a dummy code snippet to demostrate the usage of PRE tag and which is meant for testing.
void main()
{
for(int i = 0; i < 10; i++)
{
// Single line comment
Do something;
}
}
.multiple-backgrounds {
width: 500px;
height: 200px;
border: 1px solid #f00;
padding: 20px;
}
Table - Dummy
Below is a dummy 3x3 table which is meant for testing.
| One | This is the Second Cell | Three |
| Four | Five | Six |
| Seven | Eight |
Below is another dummy 3x3 table which is meant for testing.
| This is the Second Cell | Three | |
| Four | Five | Six |
| Seven | Eight |
Bullet List - Dummy
Below is a dummy bullet list which is meant for testing.
- This line has a SPACE at its beginning.
- This line has a SPACE at its end.
- This line has a SPACE at its end
- This line does NOT have a SPACE at its end
- This is a sub level
- This item is not empty
-
-
- This list item is not empty
- This is item number 3.
- This is a sub-item @ level 1.
- This is a sub-item @ level 2.
- This is a sub-item @ level 3.
- This is a sub-item @ level 4.
- This is a sub-item @ level 3.
- This is a sub-item @ level 3.
- This is a sub-item @ level 2.
- This is a sub-item @ level 2.
- This is a sub-item @ level 1.
- This is a sub-item @ level 1.
- This is not empty and is longer than the one below
- This is not empty as well
Numbered List - Dummy
Below is a dummy numbered list which is meant for testing.
- This is item number 1.
- This is item number 2.
- This is item number 3.